2412cab77939166e012990e729fd6768d88182b3,portal-impl/src/com/liferay/portal/cache/ehcache/EhcachePortalCache.java,EhcachePortalCache,put,#K#V#number#,69
Before Change
public void put(K key, V value, int timeToLive) {
Element element = new Element(key, value);
element.setTimeToLive(timeToLive);
ehcache.put(element);
}
After Change
protected void doPut(K key, V value, int timeToLive, boolean quiet) {
Element element = new Element(key, value);
if (timeToLive != DEFAULT_TIME_TO_LIVE) {
element.setTimeToLive(timeToLive);
}
if (quiet) {